Package pl. wendigo. chrome. api. runtime
Contains DevTools Protocol Runtime domain implementation accessible via RuntimeDomain class.
Types
AddBindingRequest
Link copied to clipboard
data class AddBindingRequest(name: String, executionContextId: ExecutionContextId?, executionContextName: String?)
Content copied to clipboard
Represents request frame that can be used with Runtime#addBinding operation call.
AwaitPromiseRequest
Link copied to clipboard
data class AwaitPromiseRequest(promiseObjectId: RemoteObjectId, returnByValue: Boolean?, generatePreview: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Runtime#awaitPromise operation call.
AwaitPromiseResponse
Link copied to clipboard
data class AwaitPromiseResponse(result: RemoteObject, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#awaitPromise operation call.
BindingCalledEvent
Link copied to clipboard
data class BindingCalledEvent(name: String, payload: String, executionContextId: ExecutionContextId) : Event
Content copied to clipboard
CallArgument
Link copied to clipboard
data class CallArgument(value: JsonElement?, unserializableValue: UnserializableValue?, objectId: RemoteObjectId?)
Content copied to clipboard
CallFunctionOnRequest
Link copied to clipboard
data class CallFunctionOnRequest(functionDeclaration: String, objectId: RemoteObjectId?, arguments: List<CallArgument>?, silent: Boolean?, returnByValue: Boolean?, generatePreview: Boolean?, userGesture: Boolean?, awaitPromise: Boolean?, executionContextId: ExecutionContextId?, objectGroup: String?)
Content copied to clipboard
Represents request frame that can be used with Runtime#callFunctionOn operation call.
CallFunctionOnResponse
Link copied to clipboard
data class CallFunctionOnResponse(result: RemoteObject, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#callFunctionOn operation call.
CompileScriptRequest
Link copied to clipboard
data class CompileScriptRequest(expression: String, sourceURL: String, persistScript: Boolean, executionContextId: ExecutionContextId?)
Content copied to clipboard
Represents request frame that can be used with Runtime#compileScript operation call.
CompileScriptResponse
Link copied to clipboard
data class CompileScriptResponse(scriptId: ScriptId?, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#compileScript operation call.
ConsoleAPICalledEvent
Link copied to clipboard
data class ConsoleAPICalledEvent(type: String, args: List<RemoteObject>, executionContextId: ExecutionContextId, timestamp: Timestamp, stackTrace: StackTrace?, context: String?) : Event
Content copied to clipboard
CustomPreview
Link copied to clipboard
EntryPreview
Link copied to clipboard
EvaluateRequest
Link copied to clipboard
data class EvaluateRequest(expression: String, objectGroup: String?, includeCommandLineAPI: Boolean?, silent: Boolean?, contextId: ExecutionContextId?, returnByValue: Boolean?, generatePreview: Boolean?, userGesture: Boolean?, awaitPromise: Boolean?, throwOnSideEffect: Boolean?, timeout: TimeDelta?, disableBreaks: Boolean?, replMode: Boolean?, allowUnsafeEvalBlockedByCSP: Boolean?, uniqueContextId: String?)
Content copied to clipboard
Represents request frame that can be used with Runtime#evaluate operation call.
EvaluateResponse
Link copied to clipboard
data class EvaluateResponse(result: RemoteObject, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#evaluate operation call.
ExceptionDetails
Link copied to clipboard
data class ExceptionDetails(exceptionId: Int, text: String, lineNumber: Int, columnNumber: Int, scriptId: ScriptId?, url: String?, stackTrace: StackTrace?, exception: RemoteObject?, executionContextId: ExecutionContextId?)
Content copied to clipboard
ExceptionRevokedEvent
Link copied to clipboard
data class ExceptionRevokedEvent(reason: String, exceptionId: Int) : Event
Content copied to clipboard
ExceptionThrownEvent
Link copied to clipboard
data class ExceptionThrownEvent(timestamp: Timestamp, exceptionDetails: ExceptionDetails) : Event
Content copied to clipboard
ExecutionContextCreatedEvent
Link copied to clipboard
data class ExecutionContextCreatedEvent(context: ExecutionContextDescription) : Event
Content copied to clipboard
ExecutionContextDescription
Link copied to clipboard
data class ExecutionContextDescription(id: ExecutionContextId, origin: String, name: String, uniqueId: String, auxData: JsonElement?)
Content copied to clipboard
ExecutionContextDestroyedEvent
Link copied to clipboard
data class ExecutionContextDestroyedEvent(executionContextId: ExecutionContextId) : Event
Content copied to clipboard
ExecutionContextId
Link copied to clipboard
GetHeapUsageResponse
Link copied to clipboard
GetIsolateIdResponse
Link copied to clipboard
GetPropertiesRequest
Link copied to clipboard
data class GetPropertiesRequest(objectId: RemoteObjectId, ownProperties: Boolean?, accessorPropertiesOnly: Boolean?, generatePreview: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Runtime#getProperties operation call.
GetPropertiesResponse
Link copied to clipboard
data class GetPropertiesResponse(result: List<PropertyDescriptor>, internalProperties: List<InternalPropertyDescriptor>?, privateProperties: List<PrivatePropertyDescriptor>?, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#getProperties operation call.
GlobalLexicalScopeNamesRequest
Link copied to clipboard
data class GlobalLexicalScopeNamesRequest(executionContextId: ExecutionContextId?)
Content copied to clipboard
Represents request frame that can be used with Runtime#globalLexicalScopeNames operation call.
GlobalLexicalScopeNamesResponse
Link copied to clipboard
InspectRequestedEvent
Link copied to clipboard
data class InspectRequestedEvent(_object: RemoteObject, hints: JsonElement) : Event
Content copied to clipboard
InternalPropertyDescriptor
Link copied to clipboard
data class InternalPropertyDescriptor(name: String, value: RemoteObject?)
Content copied to clipboard
ObjectPreview
Link copied to clipboard
data class ObjectPreview(type: String, subtype: String?, description: String?, overflow: Boolean, properties: List<PropertyPreview>, entries: List<EntryPreview>?)
Content copied to clipboard
PrivatePropertyDescriptor
Link copied to clipboard
data class PrivatePropertyDescriptor(name: String, value: RemoteObject?, get: RemoteObject?, set: RemoteObject?)
Content copied to clipboard
PropertyDescriptor
Link copied to clipboard
data class PropertyDescriptor(name: String, value: RemoteObject?, writable: Boolean?, get: RemoteObject?, set: RemoteObject?, configurable: Boolean, enumerable: Boolean, wasThrown: Boolean?, isOwn: Boolean?, symbol: RemoteObject?)
Content copied to clipboard
PropertyPreview
Link copied to clipboard
data class PropertyPreview(name: String, type: String, value: String?, valuePreview: ObjectPreview?, subtype: String?)
Content copied to clipboard
QueryObjectsRequest
Link copied to clipboard
data class QueryObjectsRequest(prototypeObjectId: RemoteObjectId, objectGroup: String?)
Content copied to clipboard
Represents request frame that can be used with Runtime#queryObjects operation call.
QueryObjectsResponse
Link copied to clipboard
ReleaseObjectGroupRequest
Link copied to clipboard
ReleaseObjectRequest
Link copied to clipboard
RemoteObject
Link copied to clipboard
data class RemoteObject(type: String, subtype: String?, className: String?, value: JsonElement?, unserializableValue: UnserializableValue?, description: String?, objectId: RemoteObjectId?, preview: ObjectPreview?, customPreview: CustomPreview?)
Content copied to clipboard
RemoteObjectId
Link copied to clipboard
RemoveBindingRequest
Link copied to clipboard
RunScriptRequest
Link copied to clipboard
data class RunScriptRequest(scriptId: ScriptId, executionContextId: ExecutionContextId?, objectGroup: String?, silent: Boolean?, includeCommandLineAPI: Boolean?, returnByValue: Boolean?, generatePreview: Boolean?, awaitPromise: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Runtime#runScript operation call.
RunScriptResponse
Link copied to clipboard
data class RunScriptResponse(result: RemoteObject, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Runtime#runScript operation call.
RuntimeDomain
Link copied to clipboard
SetAsyncCallStackDepthRequest
Link copied to clipboard
SetCustomObjectFormatterEnabledRequest
Link copied to clipboard
Represents request frame that can be used with Runtime#setCustomObjectFormatterEnabled operation call.
SetMaxCallStackSizeToCaptureRequest
Link copied to clipboard
StackTrace
Link copied to clipboard
data class StackTrace(description: String?, callFrames: List<CallFrame>, parent: StackTrace?, parentId: StackTraceId?)
Content copied to clipboard
StackTraceId
Link copied to clipboard
UniqueDebuggerId
Link copied to clipboard
UnserializableValue
Link copied to clipboard